home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’95 / CyberProcDoggie / Source Code / Woof / WoofLibraryDef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-24  |  739 b   |  31 lines  |  [TEXT/MPS ]

  1. #ifndef WoofLibraryDef_h
  2. #define WoofLibraryDef_h
  3.  
  4.  
  5. // ••• Resource Allocation
  6.  
  7. #define kShortAllocationSeperator        0x0100
  8. #define    kBaseShortAllocation            0x0100
  9.  
  10.  
  11. // • 1 • WoofService
  12. #define    kFirstWoofServiceShort        ((1 * kShortAllocationSeperator) + kBaseShortAllocation)
  13.  
  14. // • 2 • WoofItem
  15. #define    kFirstWoofItemShort            ((2 * kShortAllocationSeperator) + kBaseShortAllocation)
  16.  
  17.  
  18. // ••• Class Names
  19.  
  20. #define kWoofItemClassName                    "AppleCyberdog::WoofItem"
  21. #define kWoofStreamClassName                "AppleCyberdog::WoofStream"
  22. #define kWoofServiceClassName                "AppleCyberdog::WoofService"
  23.  
  24.  
  25. // ••• Base Class Names for CFRG resource
  26.  
  27. #define kWoofItemBaseName                    "WoofItem"
  28. #define kWoofServiceBaseName                "WoofService"
  29.  
  30. #endif    // WoofLibraryDef_h
  31.